home *** CD-ROM | disk | FTP | other *** search
/ Aminet 30 / Aminet 30 (1999)(Schatztruhe)[!][Apr 1999].iso / Aminet / gfx / misc / gnuplot-3.7src.lha / gnuplot-3.7src / gnuplot-3.7.lha / gnuplot-3.7 / docs / latextut / makefile.dst < prev    next >
Makefile  |  1998-11-26  |  566b  |  31 lines

  1. # Makefile for gnuplot LaTeX tutorial
  2. # To make the manual from scratch, we run latex two times
  3. all: tutorial.dvi done
  4.  
  5. done:
  6.     latex tutorial
  7.     echo > done
  8.  
  9. # To touch it up after changes:
  10. remake: tutorial.dvi
  11.  
  12. # Always runs latex, e.g., to get labels right
  13. force:
  14.     latex tutorial
  15.  
  16. tutorial.dvi: eg1.tex eg2.tex eg3.tex eg4.tex eg5.tex eg6.tex linepoin.tex \
  17.     tutorial.tex header.tex
  18.     latex tutorial
  19.     rm -f done
  20.  
  21. .SUFFIXES: .tex .plt
  22.  
  23. .plt.tex:
  24.     gnuplot $<
  25.  
  26. clean:
  27.     rm -f *~ *.log eg?.tex linepoin.tex
  28.  
  29. spotless:
  30.     rm -f *~ *.log *.aux *.dvi eg?.tex linepoin.tex done
  31.